home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / hyper / hsc_source.lha / hsc / source / hsclib / inc_base.h < prev    next >
C/C++ Source or Header  |  1996-09-06  |  1KB  |  57 lines

  1. /*
  2.  * hsclib/inc_base.h
  3.  *
  4.  * include basic structures and prototypes that are
  5.  * required by most other modules
  6.  *
  7.  * Copyright (C) 1996  Thomas Aglassinger
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  *
  23.  * updated: 30-Jul-1996
  24.  * created: 19-Feb-1996
  25.  */
  26.  
  27. #ifndef HSCLIB_INC_BASE_H
  28. #define HSCLIB_INC_BASE_H
  29.  
  30. #include <stdio.h>
  31. #include <stdarg.h>
  32. #include <string.h>
  33. #include <errno.h>
  34.  
  35. #include "hsclib/ldebug.h"
  36.  
  37. #include "ugly/utypes.h"
  38. #include "ugly/dllist.h"
  39. #include "ugly/expstr.h"
  40. #include "ugly/umemory.h"
  41. #include "ugly/infile.h"
  42. #include "ugly/ustring.h"
  43.  
  44. #include "hsclib/msgid.h"
  45.  
  46. #include "hscprj/document.h"
  47.  
  48. #include "hsclib/attrib.h"
  49. #include "hsclib/entity.h"
  50. #include "hsclib/tag.h"
  51. #include "hsclib/hscprc.h"
  52. #include "hsclib/lmessage.h"
  53. #include "hsclib/lstatus.h"
  54.  
  55. #endif /* HSCLIB_INC_BASE_H */
  56.  
  57.